home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / bobsleddin.swf / scripts / %3Cdefault package%3E / SimpleProgressBar.as < prev   
Encoding:
Text File  |  2007-09-28  |  349 b   |  13 lines

  1. function SimpleProgressBar()
  2. {
  3. }
  4. Object.registerClass("SimpleProgressBar",SimpleProgressBar);
  5. var p = SimpleProgressBar.prototype = new MovieClip();
  6. p.value = 0;
  7. p.maxValue = 1;
  8. p.setValue = function(newValue)
  9. {
  10.    this.value = Math.max(0,Math.min(this.maxValue,newValue));
  11.    this.display._xscale = this.value / this.maxValue * 100;
  12. };
  13.